login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Search: id:a183875|id:a183862
Displaying 1-2 of 2 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A183862 a(n) = n + floor(sqrt(5*n/2)); complement of A183863. +0
1
2, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also n + floor(sqrt(5*n/2 + 1/2)) since 5*n/2 + 1/2 is never a square. - Charles R Greathouse IV, Feb 11 2011
LINKS
MATHEMATICA
a=5/2; b=1/2;
Table[n+Floor[(a*n+b)^(1/2)], {n, 80}]
Table[n-1+Ceiling[(n*n-b)/a], {n, 70}]
PROG
(PARI) a(n)=n+sqrtint(5*n/2)
CROSSREFS
Cf. A183863.
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 07 2011
STATUS
approved
A183875 Triangle T(n,k) for A(x)^k=sum(n>=k T(n,k)*x^n), where o.g.f. A(x) satisfies A(x)=(a+b*x*A(x))/(c-d*x*A(x)), a=1,b=2,c=1,d=2. +0
0
1, 4, 1, 24, 8, 1, 176, 64, 12, 1, 1440, 544, 120, 16, 1, 12608, 4864, 1168, 192, 20, 1, 115584, 45184, 11424, 2112, 280, 24, 1, 1095424, 432128, 113088, 22528, 3440, 384, 28, 1, 10646016, 4227584, 1133952, 237824, 39840, 5216, 504, 32, 1, 105522176, 42115072, 11506944, 2505728, 448064, 65280, 7504, 640, 36, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For o.g.f G(x), G(A(x,a,b,c,d))=g(0)+sum(n>0, sum(k=1..n, T(n,k,a,b,c,d)*g(k))x^n).
T(n,k,1,1,1,1)=A080247(n,k),
T(n,k,2,-1,1,1)=A108891(n,k),
T(n,k,1,-2,1,1)=A125692(n,k),
T(n,k,1,-3,1,1)=A125694(n,k),
T(n,k,-2,1,1,1)=A085403(n,k).
LINKS
Vladimir Kruchinin, D. V. Kruchinin, Composita and their properties, arXiv:1103.2582 [math.CO], 2011-2013.
FORMULA
T(n,k,a,b,c,d):=k/n*sum(i=0..n-k, binomial(n,n-k-i)*a^(k+i)*b^(n-k-i)*binomial(i+n-1,n-1)*c^(-i-n)*d^i), a,b,c,d !=0, n>0.
T(n,k,1,2,1,2):=k/n*2^(n-k)*sum(i=0..n-k, binomial(n,n-k-i)*binomial(i+n-1,n-1)), n>0.
Conjecture: T(n,1) = A156017(n-1). - R. J. Mathar, Nov 14 2011
EXAMPLE
1,
4,1,
24,8,1,
176,64,12,1,
1440,544,120,16,1,
12608,4864,1168,192,20,1,
115584,45184,11424,2112,280,24,1,
1095424,432128,113088,22528,3440,384,28,1,
10646016,4227584,1133952,237824,39840,5216,504,32,1,
105522176,42115072,11506944,2505728,448064,65280,7504,640,36,1
MATHEMATICA
T[n_, k_, a_, b_, c_, d_] := k/n Sum[Binomial[n, n - k - i] a^(k + i) b^(n - k - i) Binomial[i + n - 1, n - 1] c^(-i - n) d^i, {i, 0, n - k}];
T[n_, k_] := T[n, k, 1, 2, 1, 2];
Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* Jean-François Alcover, Aug 08 2018, from formula *)
KEYWORD
nonn,tabl
AUTHOR
Vladimir Kruchinin, Feb 12 2011
STATUS
approved
page 1

Search completed in 0.006 seconds

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 18:24 EDT 2024. Contains 372203 sequences. (Running on oeis4.)